Q3ViewerDraw
You can use theQ3ViewerDraw
function to draw a viewer object.
OSErr Q3ViewerDraw (TQ3ViewerObject theViewer);
theViewer
- A viewer object.
DESCRIPTION
TheQ3ViewerDraw
function draws the viewer object specified by thetheViewer
parameter. You need to call this function only if the viewer flags or other visible features of a viewer have changed. For example, to change a viewer's pane, you need to callQ3ViewerSetBounds
followed byQ3ViewerDraw
. Similarly, if the viewer flags of a new viewer object have thekQ3ViewerActive
flag clear, then to make the viewer object active you need to set that flag by callingQ3ViewerSetFlags
and then draw the viewer by callingQ3ViewerDraw
.